convert python datetime to string

25

import datetime
t = datetime.datetime(2012, 2, 23, 0, 0)
t.strftime('%m/%d/%Y')
# Python program to demonstrate datetime object
# import datetime class
from datetime import datetime as date

# Getting current date and time
now = date.now()

string = date.isoformat(now)
print(string)
print(type(string))
from datetime import datetime

now = datetime.now() # current date and time

year = now.strftime("%Y")
print("year:", year)

month = now.strftime("%m")
print("month:", month)

day = now.strftime("%d")
print("day:", day)

time = now.strftime("%H:%M:%S")
print("time:", time)

date_time = now.strftime("%m/%d/%Y, %H:%M:%S")
print("date and time:",date_time)

Comments

Submit
0 Comments